home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / programs_-_include / LINUX / KMOD.H < prev    next >
Encoding:
C/C++ Source or Header  |  1999-09-17  |  167 b   |  13 lines

  1. /*
  2.     kmod header
  3. */
  4.  
  5. #include <linux/config.h>
  6.  
  7. #ifdef CONFIG_KMOD
  8. extern int request_module(const char * name);
  9. #else
  10. #define request_module(x) do {} while(0)
  11. #endif
  12.  
  13.